home *** CD-ROM | disk | FTP | other *** search
/ IRIX 6.5 Applications 2004 May / SGI IRIX 6.5 Applications 2004 May.iso / dist / java3d.idb / usr / demos / java / j3d / programs / examples / TickTockCollision / Box.java.z / Box.java
Encoding:
Java Source  |  2003-08-08  |  3.4 KB  |  94 lines

  1. /*
  2.  *    @(#)Box.java 1.11 02/04/01 15:03:21
  3.  *
  4.  * Copyright (c) 1996-2002 Sun Microsystems, Inc. All Rights Reserved.
  5.  *
  6.  * Redistribution and use in source and binary forms, with or without
  7.  * modification, are permitted provided that the following conditions
  8.  * are met:
  9.  *
  10.  * - Redistributions of source code must retain the above copyright
  11.  *   notice, this list of conditions and the following disclaimer.
  12.  *
  13.  * - Redistribution in binary form must reproduce the above copyright
  14.  *   notice, this list of conditions and the following disclaimer in
  15.  *   the documentation and/or other materials provided with the
  16.  *   distribution.
  17.  *
  18.  * Neither the name of Sun Microsystems, Inc. or the names of
  19.  * contributors may be used to endorse or promote products derived
  20.  * from this software without specific prior written permission.
  21.  *
  22.  * This software is provided "AS IS," without a warranty of any
  23.  * kind. ALL EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND
  24.  * WARRANTIES, INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY,
  25.  * FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT, ARE HEREBY
  26.  * EXCLUDED. SUN AND ITS LICENSORS SHALL NOT BE LIABLE FOR ANY DAMAGES
  27.  * SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING OR
  28.  * DISTRIBUTING THE SOFTWARE OR ITS DERIVATIVES. IN NO EVENT WILL SUN
  29.  * OR ITS LICENSORS BE LIABLE FOR ANY LOST REVENUE, PROFIT OR DATA, OR
  30.  * FOR DIRECT, INDIRECT, SPECIAL, CONSEQUENTIAL, INCIDENTAL OR
  31.  * PUNITIVE DAMAGES, HOWEVER CAUSED AND REGARDLESS OF THE THEORY OF
  32.  * LIABILITY, ARISING OUT OF THE USE OF OR INABILITY TO USE SOFTWARE,
  33.  * EVEN IF SUN HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
  34.  *
  35.  * You acknowledge that Software is not designed,licensed or intended
  36.  * for use in the design, construction, operation or maintenance of
  37.  * any nuclear facility.
  38.  */
  39.  
  40. import javax.media.j3d.*;
  41. import javax.vecmath.*;
  42.  
  43. public class Box extends Shape3D {
  44.  
  45.     public Box(double xsize, double ysize, double zsize) {
  46.     super();
  47.     double xmin = -xsize/2.0;
  48.     double xmax =  xsize/2.0;
  49.     double ymin = -ysize/2.0;
  50.     double ymax =  ysize/2.0;
  51.     double zmin = -zsize/2.0;
  52.     double zmax =  zsize/2.0;
  53.  
  54.     QuadArray box = new QuadArray(24, QuadArray.COORDINATES);
  55.  
  56.     Point3d verts[] = new Point3d[24];
  57.  
  58.     // front face
  59.     verts[0] = new Point3d(xmax, ymin, zmax);
  60.     verts[1] = new Point3d(xmax, ymax, zmax);
  61.     verts[2] = new Point3d(xmin, ymax, zmax);
  62.     verts[3] = new Point3d(xmin, ymin, zmax);
  63.     // back face
  64.     verts[4] = new Point3d(xmin, ymin, zmin);
  65.     verts[5] = new Point3d(xmin, ymax, zmin);
  66.     verts[6] = new Point3d(xmax, ymax, zmin);
  67.     verts[7] = new Point3d(xmax, ymin, zmin);
  68.     // right face
  69.     verts[8] = new Point3d(xmax, ymin, zmin);
  70.     verts[9] = new Point3d(xmax, ymax, zmin);
  71.     verts[10] = new Point3d(xmax, ymax, zmax);
  72.     verts[11] = new Point3d(xmax, ymin, zmax);
  73.     // left face
  74.     verts[12] = new Point3d(xmin, ymin, zmax);
  75.     verts[13] = new Point3d(xmin, ymax, zmax);
  76.     verts[14] = new Point3d(xmin, ymax, zmin);
  77.     verts[15] = new Point3d(xmin, ymin, zmin);
  78.     // top face
  79.     verts[16] = new Point3d(xmax, ymax, zmax);
  80.     verts[17] = new Point3d(xmax, ymax, zmin);
  81.     verts[18] = new Point3d(xmin, ymax, zmin);
  82.     verts[19] = new Point3d(xmin, ymax, zmax);
  83.     // bottom face
  84.     verts[20] = new Point3d(xmin, ymin, zmax);
  85.     verts[21] = new Point3d(xmin, ymin, zmin);
  86.     verts[22] = new Point3d(xmax, ymin, zmin);
  87.     verts[23] = new Point3d(xmax, ymin, zmax);
  88.  
  89.     box.setCoordinates(0, verts);
  90.         setGeometry(box);
  91.     setAppearance(new Appearance());
  92.     }
  93. }
  94.